/* Motor Control SDK Documentation CSS Stylesheet 
 * Copyright (c) 2022 STMicroelectronics International N.V.
 * All rights reserved.
 */
.title {
    color: #39a9dc;
}

h1, h2, h3, h4, h5, h6 {
    color: #002052;
}

#projectname
{
    font: bold 300% Arial,sans-serif;
    color: #39a9dc;
}
    
.memname 
{ 
    font-family: consolas, monospace; 
}

.paramtype 
{ 
    font-family: consolas, monospace; 
}

.paramname 
{ 
    font-family: consolas, monospace; 
}

body {
    counter-reset:section;
}

h1 {
    counter-reset: subsection;
}

h2 {counter-reset:subsubsection;}
h1:not([class]):before
{
counter-increment:section;
content:counter(section) ". ";
}
h2:not([class]):before 
{
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}
h3:not([class]):before 
{
counter-increment:subsubsection;
content:counter(section) "." counter(subsection) "." counter(subsubsection) " ";
}

div.textblock h2:before
{
    content: ""
}